Skip to main content

Get Status

The Get Status API is used to get the status of a particular transaction using the End To End ID.

Method: POST

{{URL}}/rpc/VisaDirectService/GetStatus

Example

Request Parameters
ParameterDescription
endToEndID
Mandatory
String
Transaction Reference number that is used for End to End tracing of a transaction.

Body

{
"endToEndID": "000115"
}

Response: 200

Response Parameters
ParameterDescription
endToEndIdString
Transaction Reference number that is used for End to End tracing of a transaction.
statusString
Status of the transaction.
Sample Value:'SUCCESS'
ledgerStatusString
Status of the transaction in the ledger.
Sample Value:'POSTED'
updatedAtString
Timestamp indicating when the transaction was last updated (ISO 8601 format).
referenceNumberString
Unique reference number generated for the transaction.
transactionTypeString
Type of transaction.
Sample Value:'AFT'
{
"endToEndId": "000115",
"status": "SUCCESS",
"ledgerStatus": "POSTED",
"updatedAt": "2025-12-03T07:31:31Z",
"referenceNumber": "449833b22839485fac620f97a6773333",
"transactionType": "AFT"
}